home *** CD-ROM | disk | FTP | other *** search
/ Diccionario Escolar / Diccionario Escolar.iso / Data.Cab / F7018_BDEINST.TXT < prev    next >
Text File  |  2002-01-23  |  2KB  |  63 lines

  1. ===========================================================
  2.                    BDE Installation Notes
  3. ===========================================================
  4.  
  5. To use the BDE in an ActiveX control, deploy the BDEINST.CAB file:
  6.  
  7. 1. With your ActiveX project open in the IDE, choose
  8. Project | Web Deployment Options. Select the Project
  9. tab and check Deploy Additional Files.
  10.  
  11. 2. Select the Additional Files tab. Click Add, then select
  12. BDEINST.CAB (in the ...\BDE directory). Click OK.
  13.  
  14. 3. Later, when you choose Project | Web Deploy, Delphi/C++Builder
  15. generates an .INF file for your project. To use BDEINST.CAB, you'll
  16. need to edit this file manually. Open the file in an editor and replace
  17.  
  18.   Bdeinst.cab=Bdeinst.cab
  19.  
  20. with
  21.  
  22.   Bdeinst.dll=Bdeinst.dll
  23.  
  24. Then replace
  25.  
  26.   [Bdeinst.cab]
  27.   file=<filename>
  28.  
  29. with
  30.  
  31.   [Bdeinst.dll]
  32.   file=http://<your server path here>/Bdeinst.cab
  33.   clsid={FB99D710-18B9-11D0-A4CF-00A024C91936}
  34.   RegisterServer=yes
  35.   FileVersion=5,1,1,1
  36.  
  37.  
  38. The example below shows an edited .INF file. Lines that have been
  39. added or changed are marked with an asterisk (*). Do not include
  40. the asterisks in your .INF file.
  41.  
  42.   ;Delphi 4-generated INF file for MyProj.ocx
  43.   [Add.Code]
  44.   MyProj.ocx=MyProj.ocx
  45.   Bdeinst.dll=Bdeinst.dll                            *
  46.   
  47.   [MyProj.ocx]
  48.   file=http://www.MyServerPath.com/MyProj.ocx
  49.   clsid={D2E04E83-041F-11D1-AA40-444553540000}
  50.   RegisterServer=yes
  51.   FileVersion=1.0.0.0
  52.   
  53.   [Bdeinst.dll]                                      *
  54.   file=http://www.MyServerPath.com/Bdeinst.cab       *
  55.   clsid={FB99D710-18B9-11D0-A4CF-00A024C91936}       *
  56.   RegisterServer=yes                                 *
  57.   FileVersion=5,1,1,1                                *
  58.  
  59. ===============================================
  60. Copyright (c) 2002 Borland Software Corporation. 
  61. All rights reserved.
  62.                                                   
  63.